Package-level declarations

Functions

Link copied to clipboard
@JvmName(name = "isFalseNullable")
fun <T> KProperty1<T, Boolean?>.isFalse(path: Path<T>, criteriaBuilder: CriteriaBuilder): Predicate

Creates a Predicate that checks if the nullable Boolean property is false.

fun <T> KProperty1<T, Boolean>.isFalse(path: Path<T>, criteriaBuilder: CriteriaBuilder): Predicate

Creates a Predicate that checks if the Boolean property is false.

Link copied to clipboard
@JvmName(name = "isTrueNullable")
fun <T> KProperty1<T, Boolean?>.isTrue(path: Path<T>, criteriaBuilder: CriteriaBuilder): Predicate

Creates a Predicate that checks if the nullable Boolean property is true.

fun <T> KProperty1<T, Boolean>.isTrue(path: Path<T>, criteriaBuilder: CriteriaBuilder): Predicate

Creates a Predicate that checks if the Boolean property is true.